/* Intro Section */
.intro {
  background-color: #343a40; /* Dark background color */
  color: #ffffff; /* White text color */
  padding: 2rem 0; /* Vertical padding */
  position: relative; /* Positioning for overlay or additional elements */
}

.intro-content {
  padding: 2rem 0; /* Vertical padding for content */
  text-align: center; /* Center-align text */
}

.intro h1 {
  font-size: 2.5rem; /* Large heading size */
  font-weight: 700; /* Bold font weight */
  margin-bottom: 1rem; /* Space below heading */
}

.intro p {
  font-size: 1.25rem; /* Slightly larger paragraph text */
  margin-bottom: 0.5rem; /* Space below paragraph */
  line-height: 1.6; /* Improve readability */
}

@media (min-width: 768px) {
  .intro h1 {
    font-size: 3rem; /* Larger heading size for medium+ screens */
  }

  .intro p {
    font-size: 1.5rem; /* Larger paragraph text for medium+ screens */
  }
}

/* Separator Line */
.navbar + .intro {
  border-top: 8px solid #ffffff;
}

/* About Us Section Styles */
.about-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
}

.about-section .text-muted {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
}

.about-section .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about-section .image-wrapper img {
  transition: transform 0.3s ease-in-out;
}

.about-section .image-wrapper:hover img {
  transform: scale(1.1);
}

.about-section .image-overlay {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.about-section .image-wrapper:hover .image-overlay {
  opacity: 1;
}

.about-section .image-overlay h3 {
  font-size: 1.5rem;
  text-align: center;
  padding: 0 20px;
}

.about-section .btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.about-section .btn-primary:hover {
  background-color: #0056b3;
}

/* Core Values Section */
.core-values-section {
  background-color: #f9f9f9;
}

.core-values-section .value-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-values-section .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.core-values-section .icon-wrapper {
  background-color: #e9ecef;
  border-radius: 50%;
  padding: 20px;
  display: inline-block;
}

.core-values-section .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.core-values-section .card-text {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Meet Our Team Section */
.team-section {
  background-color: #ffffff;
}

.team-section .team-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-section .card-img-top {
  border: 3px solid #e9ecef;
  padding: 5px;
}

.team-section .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.team-section .card-text {
  font-size: 0.9rem;
  color: #6c757d;
}
